home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / DJGPP / DJLSR111.ZIP / lib / makefile < prev    next >
Makefile  |  1993-10-04  |  285b  |  18 lines

  1. all : crt0.o gcrt0.o
  2.  
  3. crt0.o : crt0.s
  4.     gcc -c crt0.S -o crt0.o
  5.  
  6. gcrt0.o : gcrt0t.o mcount.o
  7.     ld -r -o gcrt0.o gcrt0t.o mcount.o
  8.  
  9. gcrt0t.o : crt0.s
  10.     gcc -c -DMAKE_GCRT0 crt0.S -o gcrt0t.o
  11.  
  12. mcount.o : mcount.c
  13.     gcc -O2 -c mcount.c
  14.  
  15. clean :
  16.     -del gcrt0t.o
  17.     -del mcount.o
  18.